home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / windows5 / vbterm.zip / TTY.FRM (.txt) < prev    next >
Visual Basic Form  |  1991-09-01  |  11KB  |  254 lines

  1. VB Term
  2. Courier
  3. wwwwx
  4. wwwwx
  5. wwwwwwwww
  6. wwwwwwwwwp
  7. wwwwwwwwwp
  8. wwwwwwwwwp
  9. wwwwwwwwwp
  10. Form1
  11. BreakTimer
  12. &File
  13. mscript
  14. &Script ...
  15. mbar1
  16. mcexit
  17. &Exit
  18. settings
  19.     &Settings
  20.     comparams
  21. &Com Params ...
  22. monmode
  23. &Monitor Mode
  24. break
  25. &Break
  26.     transfers
  27. &Transfers
  28. capture
  29. &Capture to file ...
  30. uploadtext
  31. &Upload Text ...
  32. mtbar
  33. &Rec XMODEM Binary ...
  34. Rec XMODEM &ASCII ...
  35. &Tx XMODEM ...
  36. Command1_Click
  37. nCid    
  38. OpenComm
  39. Command2_Click
  40.     CloseComm:
  41. Command3_Click
  42.     configure
  43. config
  44. mousepointer
  45. Form_Click 
  46. Form_UnloadF
  47. Cancel|
  48. OpenCom
  49. CloseCom
  50.     Form_Load
  51.     ConfigComn
  52. comparams_Click
  53. mcexit_Click
  54. form_KeyPress
  55. KeyAscii
  56.     WriteComm
  57. Timer1_Timer@
  58. ReadComm
  59.     term_putc
  60.     term_init
  61. timer1N
  62. Enabled
  63. Intervalr
  64. COMSTAT
  65. status
  66. GetCommError
  67. term_putX
  68. subroutine?
  69. curxi
  70. currentx|
  71. currenty0
  72. continueM
  73. height
  74. fontsize
  75. settings_Click
  76. scaleheight
  77. cursorK
  78. width"
  79. cursor_Click
  80. cursor_KeyPress1
  81. disp_cursor
  82. hide_cursor6
  83. Form_Paint
  84. Term_Redraw
  85. slowdown
  86.     timerlock
  87. TermTextColor
  88. vt100-
  89. ReceiveLoopp
  90. ConfigComm
  91. Inited~
  92. RedrawScreen
  93.     scalemode
  94. scalewidth
  95. screen
  96. file_ClickA
  97. SerialWrite;
  98. Term$
  99. SerialOpen
  100. TPort
  101. SerialConfigb
  102. TBaud
  103. TWord0
  104. TParityP
  105. SerialClose
  106. TConfigChangede
  107. SerialRead
  108. rx_Click
  109. FlagCapture
  110. capture_Click
  111. capopen
  112. captureopen
  113. opencapture
  114. transfers_Click
  115. capture
  116. caption
  117. monmode_Clickb
  118. FlagMonitor
  119. monmode
  120. text?
  121. break_ClickE
  122. SerialBreakX
  123. BreakTimer
  124. intevalp
  125. BreakTimer_Timer
  126. uploadtext_Click
  127. opener
  128. filename
  129. endfile
  130. UploadFile
  131. SerialOutFree
  132. checked
  133. Form_KeyDown
  134. keycode
  135. Shiftb
  136. KEY_UP
  137. KEY_DOWNY
  138. KEY_LEFTO
  139.     KEY_RIGHT<
  140. KEY_F1
  141. KEY_F2
  142. KEY_F3
  143. KEY_F4y
  144. MODAL
  145. FlagScript
  146. FALSEI
  147. FlagUpload
  148. ScriptCycle
  149. ScriptLoop+
  150. mscript_Click
  151. ScriptStart
  152.     WriteText[
  153.     TightLoop
  154.     LooseLoop
  155. lastln
  156. GetTickCountN
  157.     FirstZero1
  158.     mrx_Click%
  159. filemode
  160. mrxa_Click
  161. windowstater
  162.     MINIMIZED
  163. NORMAL
  164.     mtx_Click
  165. fileinfo
  166. thefilename
  167. thepathname
  168. thenewpath
  169. filecreate
  170. oops2k
  171. fname
  172. pathspec
  173. textbox
  174. FlagUploadFile
  175. BreakWhy
  176. BreakOffs
  177. EchoSlow
  178. StartKeyTimer
  179.     EchoDelay
  180. GluePathName
  181. sPath
  182. sName
  183. uploadtext
  184.    FILE
  185.  TTY.FRMn
  186.  This is the code to handle the main terminal loop
  187.    Charles McGuinness [76701,11]
  188.    TTY.FRM Declarationss
  189.    GetTickCount returns (in multiples of 55/1000s of a second) how longg
  190.    since the system was booted.  We use this in a few places for timingg
  191.    (See ReceiveLoop)
  192.    One of the things we want to do is is not constantly turn the cursorr
  193.    on and off as we receive text.  So, when we first receive no data
  194.    we note the time in firstzero.  So long as we don't get any new
  195.    data, when the time reaches FirstZero + EchoDelay, we'll turn the
  196.    cursor on (and flush any lingering data)E
  197.  Used in timing Cursor ONt
  198.  How long from firstzero to wait
  199.    On the tty.frm, you'll notice a timer.  This timer does two thingss
  200.    for us.  One is that it times a BREAK signal (which needs to be
  201.    200ms long).  The other is a timer we start whenever the user types
  202.    a key.  Until the timer goes off, the program will immediately writee
  203.    all received data to the screen, rather than buffering it up (for
  204.    efficiency).  See the README.WRI for details or ReceiveLoop()
  205.  Why was Break Timer Activated?
  206. . to stop breakA
  207. . to slow down flushing 
  208. Form_Unload
  209. CloseCom
  210. Close Error"
  211. Closed
  212. Form_Load
  213. Unable to open port"
  214. VBTERM
  215. Unable to configure port
  216. VBTERM
  217. ConfigCom
  218.  Force Screen Update
  219. comparams_Click
  220. mcexit_Click
  221. form_KeyPress
  222. ReceiveLoop
  223.                     uploadtext.caption = "&Upload Text ..."
  224. Form_Paint
  225. capture_Click
  226. &Capture to file ...
  227. Open Capture
  228. Unable to open "
  229. &Close Capture
  230. monmode_Click
  231. break_Click
  232. BreakTimer_Timer
  233. uploadtext_Click
  234. &Upload Text ...
  235. Upload Canceled.
  236. Upload Text File
  237. Cannot open 
  238. Abort &Upload Text
  239. Form_KeyDown
  240. mscript_Click
  241. mrx_Click
  242. Receive XMODEM Binary"
  243. Binary
  244. mrxa_Click
  245. Receive XMODEM ASCII
  246. ASCII"
  247. mtx_Click
  248. Upload XMODEM"
  249. StartKeyTimer
  250. GluePathName
  251.    Because dir boxes are inconsistent in whether they have a trailingg
  252.    \ or not, when you mate a path with a name, you have to check for the
  253.    trailing \ and optionally add one in...
  254.